100
|
How can I change the group's caption

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectCallMethod( group , "AddItem", "Item 3");
_ObjectSetProperty( group , "Caption", "new caption");
_ObjectSetProperty( group , "Expanded", -1);
|
99
|
How can I get the number or count of items in a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectCallMethod( group , "AddItem", "Item 3");
_ObjectCallMethod( group , "AddItem", _ObjectGetProperty( group , "Count"));
_ObjectSetProperty( group , "Expanded", -1);
|
98
|
How can I access an item in a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectCallMethod( group , "AddItem", "Item 3");
_ObjectCallMethod(explorerbar, "TemplatePut", "Dim groObj")
_ObjectCallMethod(explorerbar, "TemplatePut", group)
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "groObj.Item(1).Bold = True");
_ObjectSetProperty( group , "Expanded", -1);
|
97
|
How can I remove all items, from a group
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectCallMethod( group , "AddItem", "Item 3");
_ObjectCallMethod( group , "Clear");
_ObjectSetProperty( group , "Expanded", -1);
|
96
|
How can I remove an item, from a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectCallMethod( group , "AddItem", "Item 3");
_ObjectCallMethod( group , "RemoveItem", 1);
_ObjectSetProperty( group , "Expanded", -1);
|
95
|
How can I add a new item to a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1",1);
_ObjectSetProperty( group , "Expanded", -1);
|
94
|
How can I add a new item to a group

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "AddItem", "Item 1");
|
93
|
How can I add a new item to a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
|
92
|
How can I get the groups as they are listed
OBJECT explorerbar,groups;
explorerbar = ObjectByName("AN1") ;
groups = _ObjectGetProperty( explorerbar , "Groups");
_ObjectCallMethod( groups , "Add", "Group 1");
_ObjectCallMethod( groups , "Add", "Group 2");
_ObjectCallMethod( groups , "Add", "Group 3");
|
91
|
How can I access a group by position

OBJECT explorerbar,groups;
explorerbar = ObjectByName("AN1") ;
groups = _ObjectGetProperty( explorerbar , "Groups");
_ObjectCallMethod( groups , "Add", "Group 1");
_ObjectCallMethod( groups , "Add", "Group 2");
_ObjectCallMethod( groups , "Add", "Group 3");
_ObjectCallMethod(explorerbar, "TemplatePut", "Dim groObj")
_ObjectCallMethod(explorerbar, "TemplatePut", groups)
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "groObj.ItemByPos(1).Bold = True");
|
90
|
How can I access a group

OBJECT explorerbar,groups;
explorerbar = ObjectByName("AN1") ;
groups = _ObjectGetProperty( explorerbar , "Groups");
_ObjectCallMethod( groups , "Add", "Group 1");
_ObjectCallMethod( groups , "Add", "Group 2");
_ObjectCallMethod( groups , "Add", "Group 3");
_ObjectCallMethod(explorerbar, "TemplatePut", "Dim groObj")
_ObjectCallMethod(explorerbar, "TemplatePut", groups)
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "groObj.Item(1).Bold = True");
|
89
|
How can I clear the groups collection
OBJECT explorerbar,groups;
explorerbar = ObjectByName("AN1") ;
groups = _ObjectGetProperty( explorerbar , "Groups");
_ObjectCallMethod( groups , "Add", "Group 1");
_ObjectCallMethod( groups , "Add", "Group 2");
_ObjectCallMethod( groups , "Add", "Group 3");
_ObjectCallMethod( groups , "Clear");
|
88
|
How can I remove a group

OBJECT explorerbar,groups;
explorerbar = ObjectByName("AN1") ;
groups = _ObjectGetProperty( explorerbar , "Groups");
_ObjectCallMethod( groups , "Add", "Group 1");
_ObjectCallMethod( groups , "Add", "Group 2");
_ObjectCallMethod( groups , "Add", "Group 3");
_ObjectCallMethod( groups , "Remove", 1);
|
87
|
How can I add a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectSetProperty( group , "Expanded", -1);
|
86
|
How do I count the number of groups
OBJECT explorerbar,groups;
explorerbar = ObjectByName("AN1") ;
groups = _ObjectGetProperty( explorerbar , "Groups");
_ObjectCallMethod( groups , "Add", "Group 1");
_ObjectCallMethod( groups , "Add", "Group 2");
_ObjectCallMethod( groups , "Add", "Group 3");
_ObjectCallMethod( groups , "Add", _ObjectGetProperty( groups , "Count"));
|
85
|
How can I display pictures with a custom size, instead icons, in the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set 1");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set 1");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set 2");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set 2");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "ShortcutPicture(`Set 1`) = Me.ExecuteTemplate(`loadpicture(`c:\exontrol\images\zipdisk.gif`)`)");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "ShortcutPicture(`Set 2`) = Me.ExecuteTemplate(`loadpicture(`c:\exontrol\images\auction.gif`)`)");
_ObjectSetProperty( explorerbar , "ShortcutPictureWidth", 32);
_ObjectSetProperty( explorerbar , "ShortcutPictureHeight", 32);
_ObjectSetProperty( explorerbar , "ShortcutBarHeight", 32);
|
84
|
How can I display pictures instead icons, in the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set 1");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set 1");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set 2");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set 2");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "ShortcutPicture(`Set 1`) = Me.ExecuteTemplate(`loadpicture(`c:\exontrol\images\zipdisk.gif`)`)");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "ShortcutPicture(`Set 2`) = Me.ExecuteTemplate(`loadpicture(`c:\exontrol\images\auction.gif`)`)");
_ObjectSetProperty( explorerbar , "ShortcutBarHeight", 44);
|
83
|
How can I change the visual appearance of the shortcut bar, using EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutResizeBackColor", 33554432);
_ObjectSetProperty( explorerbar , "ShortcutBarSelCaptionBackColor", 16777216);
_ObjectSetProperty( explorerbar , "ShortcutBarSelBackColor", 16777216);
_ObjectSetProperty( explorerbar , "BackColorGroup", 16777216);
|
82
|
How can I change the visual appearance of the separator between groups and the shortcut bar, using your EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutResizeBackColor", 16777216);
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
|
81
|
How do I change the background color of the separator between groups and the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutResizeBackColor", 255);
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
|
80
|
How can I change the visual appearance of the shortcut bar, using your EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutBarSelCaptionBackColor", 16777216);
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
|
79
|
How do I change the selection background color in the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutBarSelCaptionBackColor", 255);
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
|
78
|
How can I change the visual appearance of the shortcut bar, using your EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutBarSelBackColor", 16777216);
|
77
|
How do I change the selection background color in the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutBarSelBackColor", 255);
|
76
|
How can I change the visual appearance of the shortcut bar, using your EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutBarBackColor", 16777216);
|
75
|
How do I change the background color in the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ShortcutBarBackColor", 255);
|
74
|
How can I programmatically change expand or collapse the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
|
73
|
How do I change the icon for the expanding or collapsing the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ExpandShortcutImage", 3);
|
72
|
How can I enable or disable resizing the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
_ObjectSetProperty( explorerbar , "AllowResizeShortcutBar", 0);
|
71
|
How do I specify the height of the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
_ObjectSetProperty( explorerbar , "ShortcutBarHeight", 16);
|
70
|
How do I select a shortcut

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
_ObjectSetProperty( explorerbar , "SelectShortcut", "Set <img>2</img>");
|
69
|
How do I show or hide the shortcut bar

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "ShowShortcutBar", -1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "Shortcut", "Set <img>1</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 3") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 4") , "Shortcut", "Set <img>2</img>");
_ObjectSetProperty( explorerbar , "ExpandShortcutCount", 1);
|
68
|
How do I access the groups collection
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
|
67
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "FormatAnchor(False) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`");
_ObjectSetProperty( explorerbar , "HighlightItemType", 0);
_ObjectSetProperty( explorerbar , "HandCursor", 0);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group <a1><b>1</b></a>") , "CaptionFormat", 1);
|
66
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "FormatAnchor(False) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`");
_ObjectSetProperty( explorerbar , "HighlightItemType", 0);
_ObjectSetProperty( explorerbar , "HandCursor", 0);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item <a1><b>1</b></a>") , "CaptionFormat", 1);
_ObjectSetProperty( group , "Expanded", -1);
|
65
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "HighlightItemType", 0);
_ObjectSetProperty( explorerbar , "HandCursor", 0);
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "FormatAnchor(True) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group <a1><b>1</b></a>") , "CaptionFormat", 1);
|
64
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "HighlightItemType", 0);
_ObjectSetProperty( explorerbar , "HandCursor", 0);
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "FormatAnchor(True) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item <a1><b>1</b></a>") , "CaptionFormat", 1);
_ObjectSetProperty( group , "Expanded", -1);
|
63
|
How can I add several pictures and icons to an item

OBJECT explorerbar,group,item;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( group , "ItemHeight", 48);
item = _ObjectCallMethod( group , "AddItem", "<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>");
_ObjectSetProperty( item , "Image", 2);
_ObjectSetProperty( item , "CaptionFormat", 1);
_ObjectSetProperty( group , "Expanded", -1);
|
62
|
How can I add several pictures and icons to an item
OBJECT explorerbar,group,item;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( group , "ItemHeight", 48);
item = _ObjectCallMethod( group , "AddItem", "<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>");
_ObjectSetProperty( item , "Image", 2);
_ObjectSetProperty( item , "CaptionFormat", 1);
_ObjectSetProperty( group , "Expanded", -1);
|
61
|
How can I add several pictures to an item

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( group , "ItemHeight", 48);
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "<img>pic1</img> text <img>pic2</img>") , "CaptionFormat", 1);
_ObjectSetProperty( group , "Expanded", -1);
|
60
|
How can I add several pictures to a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`");
_ObjectSetProperty( explorerbar , "GroupHeight", 48);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>");
_ObjectSetProperty( group , "Image", 2);
_ObjectSetProperty( group , "CaptionFormat", 1);
_ObjectSetProperty( group , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\colorize.gif`)"));
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectSetProperty( group , "Expanded", -1);
|
59
|
How can I add several pictures and icons to a group

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`");
_ObjectSetProperty( explorerbar , "GroupHeight", 48);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>") , "CaptionFormat", 1);
|
58
|
How can I add several pictures to a group

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`");
_ObjectSetProperty( explorerbar , "GroupHeight", 48);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "<img>pic1</img> text <img>pic2</img>");
_ObjectSetProperty( group , "CaptionFormat", 1);
_ObjectSetProperty( group , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\colorize.gif`)"));
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectSetProperty( group , "Expanded", -1);
|
57
|
How can I add several pictures to a group

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`");
_ObjectSetProperty( explorerbar , "GroupHeight", 48);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "<img>pic1</img> text <img>pic2</img>") , "CaptionFormat", 1);
|
56
|
How do I force refreshing the control
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectCallMethod( explorerbar , "Refresh");
|
55
|
How can show or hide the focus rectangle

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ShowFocusRect", 0);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( group , "AddItem", "Item 1");
|
54
|
I've seen that the width of the tooltip is variable. Can I make it larger

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipWidth", 328);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.");
|
53
|
How do I let the tooltip being displayed longer

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipPopDelay", 10000);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.");
|
52
|
Can I change the default border of the tooltip, using your EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
_ObjectSetProperty( explorerbar , "ToolTipWidth", 364);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "Background(64) = 16777216");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.");
|
51
|
Can I change the background color for the tooltip

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
_ObjectSetProperty( explorerbar , "ToolTipWidth", 364);
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "Background(65) = 255");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.");
|
50
|
Does the tooltip support HTML format

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
_ObjectSetProperty( explorerbar , "ToolTipWidth", 364);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>group</fgcolor>");
|
49
|
Can I change the forecolor for the tooltip

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
_ObjectSetProperty( explorerbar , "ToolTipWidth", 364);
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "Background(66) = 255");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "This is a bit of text that's shown when the cursor hovers the group.");
|
48
|
Can I change the foreground color for the tooltip

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
_ObjectSetProperty( explorerbar , "ToolTipWidth", 364);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "<fgcolor=FF0000>This is a bit of text that's shown when the cursor hovers the group.</fgcolor>");
|
47
|
Can I change the font for the tooltip

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
_ObjectSetProperty( explorerbar , "ToolTipWidth", 364);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "<font Tahoma>This is a bit of text that's shown when the cursor hovers the group.</font> Back to the normal font");
|
46
|
Can I change the font for the tooltip

OBJECT explorerbar,stdfont;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
stdfont = _ObjectGetProperty( explorerbar , "ToolTipFont");
_ObjectSetProperty( stdfont , "Name", "Tahoma");
_ObjectSetProperty( stdfont , "Size", 14);
_ObjectSetProperty( explorerbar , "ToolTipWidth", 364);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "This is a bit of text that's shown when the cursor hovers the group.");
|
45
|
How do I disable showing the tooltip for all control
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 0);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "This is a bit of text that's shown when the cursor hovers the group.");
|
44
|
How do I show the tooltip quicker
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ToolTipDelay", 1);
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "ToolTip") , "ToolTip", "This is a bit of text that's shown when the cursor hovers the group.");
|
43
|
How do I call your x-script language

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
group = _ObjectCallMethod( explorerbar , "ExecuteTemplate", "Groups.Add(`Group 1`)");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
|
42
|
How do I call your x-script language

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Template", "BackColor = RGB(255,0,0)");
|
41
|
How can I hide a tooltip when the item exceeds its area, so ... are displayed
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "AllowTooltip", 0);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( group , "AddItem", "This isa very long text that should break the control in several pieces");
|
40
|
How can I show a tooltip when the item exceeds its area, so ... are displayed

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "AllowTooltip", -1);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( group , "AddItem", "This isa very long text that should break the control in several pieces");
|
39
|
How do I specify the distance between two groups

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "BorderGroupHeight", 0);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
|
38
|
How can I change the expand / collapse buttons

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "ExpandIcon(True) = 1");
_ObjectCallMethod(explorerbar, "ExecuteTemplate", "ExpandIcon(False) = 2");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
37
|
How do I enable or disable the control
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Enabled", 0);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
|
36
|
How do I hide the icons in the right side of the group, the expand / collapse buttons

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectSetProperty( explorerbar , "DisplayExpandIcon", 0);
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
35
|
Is there any option to stop using the hand shape cursor, when the cursor hovers an item
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectSetProperty( explorerbar , "HandCursor", 0);
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 0);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
34
|
How do I specify the color to highlight the item
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HyperLinkColor", 255);
_ObjectSetProperty( explorerbar , "HighlightItemType", 4);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
33
|
How can I expand or collapse a group when I click only its right icon
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectSetProperty( explorerbar , "ExpandOnClick", 0);
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 4);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
32
|
How do I remove the control's borders
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectSetProperty( explorerbar , "Appearance", 0);
_ObjectSetProperty( explorerbar , "BorderWidth", 0);
_ObjectSetProperty( explorerbar , "BorderHeight", 0);
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 4);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
31
|
How do I specify width or the height of the control's borders
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectSetProperty( explorerbar , "Appearance", 0);
_ObjectSetProperty( explorerbar , "BorderWidth", 0);
_ObjectSetProperty( explorerbar , "BorderHeight", 0);
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 4);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
30
|
How do I access the item from the point
|
29
|
How do I access the group from the point
|
28
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 4);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
27
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 3);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
26
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 2);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
25
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( explorerbar , "HighlightItemType", 1);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectSetProperty( _ObjectCallMethod( group , "AddItem", "Item 1") , "Image", 1);
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
24
|
How do I specify the way the control highlight the items in the group
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
_ObjectSetProperty( explorerbar , "HighlightItemType", 0);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
23
|
Is there any function to avoid painting the control while adding multiple items and groups
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( explorerbar , "BeginUpdate");
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2") , "AddItem", "Item 2");
_ObjectCallMethod( explorerbar , "EndUpdate");
|
22
|
How do I decrease the delay to scroll a group
OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "DelayScroll", 0);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2");
_ObjectCallMethod( group , "AddItem", "Item 2");
_ObjectSetProperty( group , "Expanded", -1);
|
21
|
How do I display icons

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "SmallIcons", -1);
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Image", 1);
|
20
|
How do I display 32x32 icons

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "SmallIcons", 0);
_ObjectSetProperty( explorerbar , "GroupHeight", 36);
_ObjectCallMethod( explorerbar , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1") , "Image", 1);
|
19
|
How do I specify the height of the groups

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "GroupHeight", 40);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2");
|
18
|
How do I change the visual appearance of the groups
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "GroupAppearance", 1);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2");
|
17
|
How do I change the visual appearance of the groups, using your EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( explorerbar , "BackColorGroup", 16777216);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2");
|
16
|
How do I change the background color for the groups
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "BackColorGroup", 255);
_ObjectSetProperty( explorerbar , "BackColorGroup2", 255);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
|
15
|
How do I change the background color for the groups

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "BackColorGroup", 255);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
|
14
|
How do I change the control's foreground color

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ForeColor", 16711680);
_ObjectSetProperty( explorerbar , "ForeColorGroup", 255);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 2");
|
13
|
How can I change the control's font

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( _ObjectGetProperty( explorerbar , "Font") , "Name", "Tahoma");
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
|
12
|
How do I change the control's foreground color

OBJECT explorerbar,group;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "ForeColor", 255);
group = _ObjectCallMethod( _ObjectGetProperty( explorerbar , "Groups") , "Add", "Group 1");
_ObjectCallMethod( group , "AddItem", "Item 1");
_ObjectSetProperty( group , "Expanded", -1);
|
11
|
How do I change the control's background color

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "BackColor", 13158600);
|
10
|
How do I change the control's border, using your EBN files

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( explorerbar , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( explorerbar , "Appearance", 16777216);
|
9
|
How do I remove the control's border
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Appearance", 0);
|
8
|
How do I put a picture on the center of the control
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( explorerbar , "PictureDisplay", 17);
|
7
|
How do I resize/stretch a picture on the control's background
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( explorerbar , "PictureDisplay", 49);
|
6
|
How do I put a picture on the control's center right bottom side

OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( explorerbar , "PictureDisplay", 34);
|
5
|
How do I put a picture on the control's center left bottom side
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( explorerbar , "PictureDisplay", 32);
|
4
|
How do I put a picture on the control's center top side
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( explorerbar , "PictureDisplay", 1);
|
3
|
How do I put a picture on the control's right top corner
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( explorerbar , "PictureDisplay", 2);
|
2
|
How do I put a picture on the control's left top corner
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( explorerbar , "PictureDisplay", 0);
|
1
|
How do I put a picture on the control's background
OBJECT explorerbar;
explorerbar = ObjectByName("AN1") ;
_ObjectSetProperty( explorerbar , "Picture", _ObjectCallMethod( explorerbar , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
|